home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950528-19950726 / 000072_news@columbia.edu_Tue Jun 6 12:49:05 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28078
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 6 Jun 1995 08:49:24 -0400
  3. Received: by apakabar.cc.columbia.edu id AA19422
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 6 Jun 1995 08:49:10 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: very basic question
  9. Date: 6 Jun 1995 12:49:05 GMT
  10. Organization: Columbia University
  11. Lines: 27
  12. Message-Id: <3r1is1$iul@apakabar.cc.columbia.edu>
  13. References: <karenmD9G3ur.GGw@netcom.com> <heliosD9GMwn.GJy@netcom.com> <3r03mv$85e@emerald.tufts.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <3r03mv$85e@emerald.tufts.edu>,
  18. Barbara Alarie <balarie@emerald.tufts.edu> wrote:
  19. >Thomas David Nichols (helios@netcom.com) wrote:
  20. >: Karen McEneaney (karenm@netcom.com) wrote:
  21. >
  22. >: : How do I tell kermit that my file is a binary file?
  23. >: : If I just use "send" and "get", I get a bad packet
  24. >: : error over and over.
  25. >
  26. >The kermit command is: set file type binary
  27. >
  28. Actually, "set file type binary", although it is needed
  29. for transferring binary files, affects only the format
  30. of the file after transfer.  If there are errors during
  31. the transfer -- "bad packets", retransmissions, etc --
  32. that is a different issue.
  33.  
  34. The most common cause of failure to transfer files,
  35. especially binary files, is that the communication path
  36. does not pass through the 8th bit.  The cure is to tell
  37. one or both Kermit programs to:
  38.  
  39.   SET PARITY SPACE
  40.  
  41. (or other value, other than NONE).
  42.  
  43. - Frank